home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap07 / howto02 / delphi10 / clients / calclook.dpr next >
Encoding:
Text File  |  1995-09-16  |  180 b   |  13 lines

  1. program Calclook;
  2.  
  3. uses
  4.   Forms,
  5.   Clients in 'CLIENTS.PAS' {ClientForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TClientForm, ClientForm);
  11.   Application.Run;
  12. end.
  13.